home *** CD-ROM | disk | FTP | other *** search
/ Mac Magazin/MacEasy 42 / Mac Magazin and MacEasy Magazine CD - Issue 42.iso / Software / Mobiles Büro / Newton / Accordian 1.0b / ADF Folder / PocketMoney.adf < prev    next >
Text File  |  1997-10-15  |  2KB  |  61 lines

  1. // Definition of the PocketMoney program
  2. // 10/15/97
  3. //
  4. application "PocketMoney:VtHick" called "PocketMoney" 
  5. // with options { "nofolders" }
  6.  
  7. soup "PocketMoney:Accounts:VtHick" called "PocketMoney" of "PocketMoney:VtHick"
  8.  
  9. overview "PocketMoney" called "PocketMoney" of "PocketMoney:Accounts:VtHick" queries "date" contains
  10.     {
  11.     column "Date" width 60 is date
  12.     column "Account" width 80 is account
  13.     column "Category" width 80 is category
  14.     column "Payee" width 80 is payee
  15.     column "Amount" width 80 is amount
  16.     }
  17.  
  18. class "PocketMoney:VtHick.Withdraw" called "Withdrawal" of "PocketMoney:Accounts:VtHick" contains
  19.     {
  20.     label:string called "Label"
  21.     date: datetime called "Date"
  22.     account: string called "Account"
  23.     category: string called "Category"
  24.     payee: string called "Payee"
  25.     chknum: string called "ID#"
  26.     amount:real called "Amount"
  27.     xrate:real called "Xrate"
  28.     cleared:boolean called "Cleared"
  29.     description:string called "Memo"
  30.     }
  31.  
  32. class "PocketMoney:VtHick.Deposit" called "Deposit" of "PocketMoney:Accounts:VtHick" contains
  33.     {
  34.     label:string called "Label"
  35.     date: datetime called "Date"
  36.     account: string called "Account"
  37.     category: string called "Category"
  38.     payee: string called "Payer"
  39.     chknum: string called "ID#"
  40.     amount:real called "Amount"
  41.     xrate:real called "Xrate"
  42.     cleared:boolean called "Cleared"
  43.     description:string called "Memo"
  44.     }
  45.  
  46. class "PocketMoney:VtHick.Transfer" called "Transfer" of "PocketMoney:Accounts:VtHick" contains
  47.     {
  48.     label:string called "Label"
  49.     date: datetime called "Date"
  50.     account: string called "Account"
  51.     category: string called "Category"
  52.     payee: string called "Payee"
  53.     chknum: string called "ID#"
  54.     amount:real called "Amount"
  55.     xrate:real called "Xrate"
  56.     cleared:boolean called "Cleared"
  57.     description:string called "Memo"
  58.     }
  59.  
  60.  
  61.